home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / General / ViewIt™ 2.24 Shareware / Pascal Demo Projects / Metrowerks Pascal 1.0d7 Demos / MinimumMP.p < prev    next >
Text File  |  1994-03-02  |  263b  |  14 lines

  1. {Minimum MP Demonstration Program}
  2. {©FaceWare 1991-94.  All Rights Reserved.}
  3.  
  4. program MinimumMP;
  5.  
  6.     uses
  7.         FaceStorMP, FaceProcMP;
  8. begin
  9.     fRec.uName := 'Minimum.Rsrc';
  10.     FaceIt(nil, DoInit, 0, 0, 0, 0);
  11.     repeat
  12.         FaceIt(nil, DoLoop, 0, 0, 0, 0);
  13.     until false;
  14. end.